home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Financial Peace University Interactive Bonus
/
Financial Peace University Bonus Interactive CD-ROM.iso
/
pc
/
calculators
/
futureValue.swf
/
scripts
/
__Packages
/
mx
/
skins
/
SkinElement.as
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-02-07
|
552 b
|
27 lines
class mx.skins.SkinElement extends MovieClip
{
function SkinElement()
{
super();
}
static function registerElement(name, className)
{
Object.registerClass(name,className != undefined ? className : mx.skins.SkinElement);
_global.skinRegistry[name] = true;
}
function __set__visible(visible)
{
this._visible = visible;
}
function move(x, y)
{
this._x = x;
this._y = y;
}
function setSize(w, h)
{
this._width = w;
this._height = h;
}
}